home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / RQOPTION.H < prev    next >
Text File  |  1993-06-10  |  602b  |  26 lines

  1. /**************************************************
  2. * FILE NAME:  rqoption.h  TITLE:  request options
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. **************************************************
  8. * SYNOPSIS: 
  9. *    options specified per SQL request
  10. **************************************************/
  11.  
  12. #ifndef __RQOPTION_H
  13. #define __RQOPTION_H
  14.  
  15. struct RequestOptions 
  16.     BOOL    RequiresCursor;
  17.     BOOL    UseNamedCursor;
  18.     BOOL    UseDirectExec;
  19.     BOOL    UseTransaction;
  20. } * OPTIONS;
  21.  
  22.  
  23. #endif
  24.  
  25.